JavaScript

A5.audio.Playerpause Method

Syntax

A5.audio.Player.pause()

Description

Pause the audio.

Example: Pausing the AudioPlayer Control

The UX Component AudioPlayer control's JavaScript object can be used to control the audio playback on the client. The _play property of the object contains the audio player class methods. The JavaScript below demonstrates how to pause the audio playback for an AudioPlayer control:

// Get the object for the AudioPlayer Control:
var audioObj = {dialog.object}.getControl('AUDIOPLAYER');

if (audioObj) {
    audioObj._play.pause();
}
The AudioRecorderAndPlayer control's JavaScript object also has a _play property containing methods for the audio player class.

See Also